home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / AlertPanel.wo / AlertPanel.wod < prev    next >
Encoding:
Text File  |  1996-03-02  |  478 b   |  27 lines

  1. ////////////////////////
  2. //  AlertPanel
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6. AlertTable: WOGenericContainer {
  7.     elementName = "table";
  8.     border = borderSize;
  9.     width = tableWidth;
  10. };
  11.  
  12. AlertString: FontString {
  13.     value = alertString;
  14.     fontColor = alertFontColor;
  15.     fontSize = alertFontSize;
  16. };
  17.  
  18. InfoString: FontString {
  19.     value = infoString;
  20.     fontColor = infoFontColor;
  21.     fontSize = infoFontSize;
  22. };
  23.  
  24. Comment: WOConditional {
  25.     condition = NO;
  26. };
  27.